home *** CD-ROM | disk | FTP | other *** search
/ SysOp's Arsenal / SysOp's Arsenal 1 (Arsenal Computer).ISO / rip / ripdm154.exe / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-08-10  |  1KB  |  64 lines

  1. @echo off
  2.  
  3. :
  4. : INSTALL.BAT
  5. :
  6. : v1.00 ■ 10-Aug-93 ■ Initial release
  7. :
  8. : TeleGrafix Communications, Inc.
  9. : 16458 Bolsa Chica #15
  10. : Huntington Beach, CA  92649
  11. : 714/379-2131 Voice ■ 714/379-2132 Fax ■ 714/379-2133 BBS
  12. : Internet: rip.support@telegrafix.com
  13. :
  14.  
  15. cls
  16.  
  17. echo.┌────────────────────────────────────────────────────────────────────────────┐
  18. echo.│ RIPaint Demo Installation                                INSTALL.BAT v1.00 │
  19. echo.└────────────────────────────────────────────────────────────────────────────┘
  20.  
  21. if not "%1" == "" goto CUSTOM DIR NAME
  22.  
  23. echo.
  24. echo.The RIPaint Demo program will be installed in the directory "C:\RIPDEMO".
  25. echo.
  26. echo.Press and key to install, or press CTRL-C to abort ...
  27. pause > NUL
  28.  
  29. echo.
  30. echo.
  31.  
  32. md C:\RIPDEMO
  33. RIPDEMO -d -o C:\RIPDEMO
  34.  
  35. echo.
  36. echo.  *** Installation complete. ***
  37.  
  38. goto END
  39.  
  40.  
  41. :CUSTOM DIR NAME
  42.  
  43. echo.
  44. echo.The RIPaint Demo program will be installed in the directory "%1".
  45. echo.
  46. echo.Press and key to install, or press CTRL-C to abort ...
  47. pause > NUL
  48.  
  49. echo.
  50. echo.
  51.  
  52. RIPDEMO -d -o %1
  53.  
  54. echo.
  55. echo.  *** Installation complete. ***
  56.  
  57. goto END
  58.  
  59.  
  60. :END
  61.  
  62. echo.
  63.  
  64.